home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-31 | 556 b | 26 lines |
- #
- # This is the make file for the poly3d-h directory using DJGCC on the IBMPC.
- #
- # Gershon Elber, Dec 1991
- #
-
- include ..\makeflag.os2
-
- OBJS = out-edge.o poly3d-h.o prepdata.o
-
- install: poly3d-h.exe
- $(CP) -f poly3d-h.exe $(BIN_DIR)
- $(CP) -f poly3d-h.cfg $(BIN_DIR)
- $(RM) poly3d-h.exe
-
- poly3d-h.exe: $(OBJS)
- $(CC) $(CFLAGS) $(OBJS) -o poly3d-h $(LIBS)
- $(STRIP) poly3d-h
- $(BIND) poly3d-h $(BINDOPT)
- $(RM) poly3d-h
-
- # Dependencies starts here - do not touch, generated automatically.
- out-edge.o: program.h
- poly3d-h.o: program.h
- prepdata.o: program.h
-